home *** CD-ROM | disk | FTP | other *** search
/ io Programmo 60 / IOPROG_60.ISO / soft / c++ / gsl-1.1.1-setup.exe / {app} / src / cblas / sasum.c < prev    next >
Encoding:
C/C++ Source or Header  |  2002-04-18  |  210 b   |  12 lines

  1. #include <gsl/gsl_math.h>
  2. #include <gsl/gsl_cblas.h>
  3. #include "cblas.h"
  4.  
  5. float
  6. cblas_sasum (const int N, const float *X, const int incX)
  7. {
  8. #define BASE float
  9. #include "source_asum_r.h"
  10. #undef BASE
  11. }
  12.